home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / man-db.postrm < prev    next >
Text File  |  2009-09-07  |  976b  |  40 lines

  1. #!/bin/sh -e
  2.  
  3. oldcatdir="/var/catman"
  4. catdir="/var/cache/man"
  5.  
  6. case $1 in
  7.     purge)
  8.     # removing all catpage hierarchies
  9.     if [ -d $oldcatdir ]; then
  10.         echo "  Removing catpages as well as $oldcatdir hierarchy."
  11.         rm -rf $oldcatdir 2>/dev/null || true
  12.     fi
  13.     if [ -d $catdir ]; then
  14.         echo "  Removing catpages as well as $catdir hierarchy."
  15.         rm -rf $catdir 2>/dev/null || true
  16.     fi
  17.     ;;
  18.  
  19.     abort-install|abort-upgrade)
  20.     if [ -e /etc/cron.daily/man.moved-by-preinst ] && \
  21.        [ ! -e /etc/cron.daily/man ]; then
  22.         mv /etc/cron.daily/man.moved-by-preinst /etc/cron.daily/man
  23.     fi
  24.     if [ -e /etc/cron.weekly/catman.moved-by-preinst ] && \
  25.        [ ! -e /etc/cron.weekly/catman ]; then
  26.         mv /etc/cron.weekly/catman.moved-by-preinst /etc/cron.weekly/catman
  27.     fi
  28.     ;;
  29. esac
  30.  
  31. # Automatically added by dh_installdebconf
  32. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  33.     . /usr/share/debconf/confmodule
  34.     db_purge
  35. fi
  36. # End automatically added section
  37.  
  38.  
  39. exit 0
  40.